home *** CD-ROM | disk | FTP | other *** search
/ Programmer Plus 2007 / Programmer-Plus-2007.iso / Programming / Compilers / digital marsC compier / dm / include / Unmangle.h < prev    next >
Encoding:
C/C++ Source or Header  |  2001-03-16  |  470 b   |  30 lines

  1. /* Copyright (C) 1992-2001 by Digital Mars. $Revision: 1.1.1.2 $ */
  2. #if __SC__ || __RCC__
  3. #pragma once
  4. #endif
  5.  
  6. #ifndef __UNMANGLE_H
  7. #define __UNMANGLE_H 1
  8.  
  9. #if __cplusplus
  10. extern "C" {
  11. #endif
  12.  
  13.  
  14. #if __OS2__ && __INTSIZE == 4
  15. #define __CLIB    __stdcall
  16. #else
  17. #define __CLIB    __cdecl
  18. #endif
  19.  
  20. #if !defined(__UNMANGLE_DEFINED)
  21. char * __CLIB unmangle_pt (char **);
  22. char * __CLIB unmangle_ident (char *ident);
  23. #endif
  24.  
  25. #if __cplusplus
  26. }
  27. #endif
  28.  
  29. #endif
  30.